home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / unixSyscall / RCS / getpgrp.c,v < prev    next >
Text File  |  1988-06-19  |  1KB  |  80 lines

  1. head     1.1;
  2. access   ;
  3. symbols  ;
  4. locks    ; strict;
  5. comment  @ * @;
  6.  
  7.  
  8. 1.1
  9. date     88.06.19.14.31.26;  author ouster;  state Exp;
  10. branches ;
  11. next     ;
  12.  
  13.  
  14. desc
  15. @@
  16.  
  17.  
  18.  
  19. 1.1
  20. log
  21. @Initial revision
  22. @
  23. text
  24. @/* 
  25.  * getpgrp.c --
  26.  *
  27.  *    Procedure to map from Unix getpgrp system call to Sprite.
  28.  *
  29.  * Copyright (C) 1986 Regents of the University of California
  30.  * All rights reserved.
  31.  */
  32.  
  33. #ifndef lint
  34. static char rcsid[] = "$Header: getpgrp.c,v 1.4 87/05/18 17:00:39 nelson Exp $ SPRITE (Berkeley)";
  35. #endif not lint
  36.  
  37. #include "sprite.h"
  38. #include "compatInt.h"
  39. #include "proc.h"
  40.  
  41.  
  42. /*
  43.  *----------------------------------------------------------------------
  44.  *
  45.  * getpgrp --
  46.  *
  47.  *    Procedure to map from Unix getpgrp system call to Sprite 
  48.  *    Proc_GetFamilyID. 
  49.  *
  50.  * Results:
  51.  *    UNIX_ERROR is returned upon error, with the actual error code
  52.  *    stored in errno.  Otherwise the family id of the given process is
  53.  *    returned.
  54.  *
  55.  * Side effects:
  56.  *    None.
  57.  *
  58.  *----------------------------------------------------------------------
  59.  */
  60.  
  61. int
  62. getpgrp(pid)
  63.     int pid;            /* Process to get the process group for. */
  64. {
  65.     ReturnStatus status;    /* result returned by Proc_GetFamilyID */
  66.     int         familyID;    /* Family ID of process. */
  67.  
  68.     if (pid == 0) {
  69.     pid = PROC_MY_PID;
  70.     }
  71.     status = Proc_GetFamilyID(pid, &familyID);
  72.     if (status != SUCCESS) {
  73.     errno = Compat_MapCode(status);
  74.     return(UNIX_ERROR);
  75.     } else {
  76.     return(familyID);
  77.     }
  78. }
  79. @
  80.